To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
👀 Reading hidden code
begin
import Pkg
Pkg.activate(mktempdir())
Pkg.add(url="https://github.com/Pangoraw/PlutoUI.jl", rev="possible_bind_values")
end
❔
  Activating new project at `/tmp/jl_3GCHq7`
     Cloning git-repo `https://github.com/Pangoraw/PlutoUI.jl`
    Updating git-repo `https://github.com/Pangoraw/PlutoUI.jl`
    Updating registry at `~/.julia/registries/General.toml`
   Resolving package versions...
    Updating `/tmp/jl_3GCHq7/Project.toml`
  [7f904dfe] + PlutoUI v0.7.16 `https://github.com/Pangoraw/PlutoUI.jl#possible_bind_values`
    Updating `/tmp/jl_3GCHq7/Manifest.toml`
  [47d2ed2b] + Hyperscript v0.0.4
  [ac1192a8] + HypertextLiteral v0.9.5
  [b5f81e59] + IOCapture v0.2.5
  [682c06a0] + JSON v0.21.4
  [69de0a69] + Parsers v2.8.1
  [7f904dfe] + PlutoUI v0.7.16 `https://github.com/Pangoraw/PlutoUI.jl#possible_bind_values`
  [aea7be01] + PrecompileTools v1.2.1
  [21216c6a] + Preferences v1.4.3
  [189a3867] + Reexport v1.2.2
  [410a4b4d] + Tricks v0.1.10
  [2a0f44e3] + Base64
  [ade2ca70] + Dates
  [b77e0a4c] + InteractiveUtils
  [56ddb016] + Logging
  [d6f4376e] + Markdown
  [a63ad114] + Mmap
  [de0858da] + Printf
  [9a3f8284] + Random
  [ea8e919c] + SHA
  [9e88b42a] + Serialization
  [fa267f1f] + TOML
  [8dfed614] + Test
  [cf7118a7] + UUIDs
  [4ec0a83e] + Unicode
Precompiling project...
PlutoUI
  1 dependency successfully precompiled in 5 seconds (9 already precompiled)
8.0 s
Error message

UndefVarError: _get_possible_values not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. getproperty
    from Base.jl:35
  2. PlutoRunner._get_possible_values |> methods
👀 Reading hidden code
PlutoRunner._get_possible_values |> methods
---
👀 Reading hidden code
Enter cell code...
83.7 μs
Error message

UndefVarError: is_sliderserver_static_export not defined

PlutoUI.BuiltinsNotebook.is_sliderserver_static_export()
👀 Reading hidden code
---
Error message

UndefVarError: PossibleBindValues not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. getproperty
    from Base.jl:35
  2. PlutoRunner.PossibleBindValues
PlutoRunner.PossibleBindValues
👀 Reading hidden code
---
HTML("""
<div style="width: 200px; height: 200px; background: salmon;">

<div style="width: 1em; height: 1em; background: $(cool ? "darkblue" : "green"); position: absolute; left: $(x * 20)px; top: $(y * 20)px;"></div>

</div>
""")
👀 Reading hidden code
33.4 μs
@bind y Slider(6:.1:7)
👀 Reading hidden code
339 ms
@bind x Slider(1:10)
👀 Reading hidden code
6.6 ms
@bind cool CheckBox(false)
👀 Reading hidden code
39.9 ms
(x,y)
👀 Reading hidden code
12.1 μs

👀 Reading hidden code
151 μs
@bind hellooooo Slider(1:100)
👀 Reading hidden code
718 μs
"hello 1"
"hello $(hellooooo)"
👀 Reading hidden code
17.8 μs

👀 Reading hidden code
175 μs
Error message

UndefVarError: _get_possible_values not defined

Stack trace

Here is what happened, the most recent locations are first:

  1. getproperty(x::Module, f::Symbol)
    from Base.jl:35
  2. 	using PlutoUI	function Main.PlutoRunner._get_possible_values(slider::Slider)	    slider.range
begin
using PlutoUI
function Main.PlutoRunner._get_possible_values(slider::Slider)
slider.range
end
function Main.PlutoRunner._get_possible_values(::CheckBox)
Set{Bool}([true, false])
end
end
👀 Reading hidden code
---
Error message

The package HypertextLiteral.jl could not load because it failed to initialize.

That's not nice! Things you could try:

  • Restart the notebook.
  • Try a different Julia version.
  • Contact the developers of HypertextLiteral.jl about this error.

You might find useful information in the package installation log:

C'est la vie !
using HypertextLiteral
👀 Reading hidden code
---